home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- CStaticInteger.h
-
- Subclass of CStaticString, provides additional method to set
- a string to its integer equivalent.
-
- by Dan Podwall - you may do anything you please with this code except
- charge for it, with the exception of normal network download charges.
-
- ******************************************************************************/
-
-
- #define _H_CStaticInteger
-
- #include "CStaticString.h"
-
-
- struct CStaticInteger : CStaticString
- {
- virtual void IStaticInteger(CView *anEnclosure, CBureaucrat *aSupervisor,
- Int16 aWidth, Int16 aHeight, Int16 aHEncl, Int16 aVEncl,
- SizingOption aHSizing, SizingOption aVSizing, Int32 initValue);
-
- virtual void SetIntValue( Int32 aValue);
-
- };